home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / gawk / gawk213b.zoo / test / manychk.awk < prev    next >
Encoding:
AWK Script  |  1991-06-03  |  154 b   |  10 lines

  1. BEGIN{
  2.     cmd = "wc -l junk\\*"
  3. }
  4. {
  5.     cmd | getline
  6.     if (2 != $1 && "" != $1)
  7.         count += 1
  8. }
  9. END { close (cmd); print "this better be 1 ->", count}
  10.